﻿body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: radial-gradient(circle at 20% 50%, #e0f7fa 0%, #b2ebf2 30%, transparent 60%), radial-gradient(circle at 80% 70%, #ffccbc 0%, #ffab91 30%, transparent 60%), linear-gradient(135deg, #eceff1 0%, #cfd8dc 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
}

.login-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
    max-width: 1100px;
    width: 100%;
}

.left-side {
    flex: 1 1 50%;
    background: url('https://source.unsplash.com/random/500x500/?banking,finance') center/cover no-repeat;
    position: relative;
    min-height: 300px;
}

    .left-side::after {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(20, 8, 250, 0.5);
    }

.deaf-container {
    position: relative;
    color: white;
    text-align: center;
    z-index: 2;
    padding: 40px 20px 0;
}

.deaf-text {
    font-weight: bold;
    font-size: 1.6rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.login-image {
    margin-top: 30px;
    max-width: 80%;
    border-radius: 10px;
    z-index: 2;
    position: relative;
}

.right-side {
    flex: 1 1 50%;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.corner-logo {
    height: 50px;
    position: absolute;
    top: 20px;
    right: 20px;
}

h3 {
    color: #0077b6;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 600;
}

.icon-input {
    position: relative;
}

    .icon-input .icon {
        position: absolute;
        left: 8px;
        top: 50%;
        transform: translateY(-50%);
        color: #0077b6;
        font-size: 18px;
    }

    .icon-input input {
        padding-left: 38px;
        border: none;
        border-bottom: 2px solid #0077b6;
        width: 100%;
        font-size: 16px;
        height: 42px;
        background: transparent;
    }

        .icon-input input:focus {
            outline: none;
            border-bottom-color: #00b4d8;
        }

.captcha-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.captcha-display {
    font-weight: bold;
    font-size: 20px;
    color: #0077b6;
    background: #f0f8ff;
    padding: 5px 15px;
    border-radius: 5px;
    border: 1px solid #d0e3ff;
}

.refresh-icon {
    cursor: pointer;
    color: #0077b6;
}

button[type="submit"] {
    background: #0077b6;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    margin-top: 20px;
    float: right;
}

    button[type="submit"]:hover {
        background: #00b4d8;
    }

@@media (max-width: 768px) {
    .left-side, .right-side {
        flex: 1 1 100%;
    }

    .corner-logo {
        height: 40px;
    }
}

.alert-timer {
    position: relative;
    padding-bottom: 0.8rem;
}

    .alert-timer::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        height: 4px;
        width: 100%;
        background: #b71c1c;
        animation: shrink 5s linear forwards;
    }

@@keyframes shrink {
    from {
        width: 100%;
    }

    to {
        width: 0%;
    }
}
